home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / HelpIDProvider.java < prev    next >
Text File  |  1998-10-06  |  288b  |  13 lines

  1. package com.symantec.itools.vcafe.beans;
  2.  
  3. /**
  4.  * A customizer that implements this, can provide a Windows help ID
  5.  */
  6. public interface HelpIDProvider
  7. {
  8.     /**
  9.      * @return a Windows help ID for the Object implementing this interface.
  10.      */
  11.      public int getHelpID();
  12. }
  13.